/*this datalist my style*/
body{
  --color-primary: #009579;
  --color-primary_dark: #007f67;
  --color-secondary: #252c6a;
  --color-error: #cc3333;
  --color-success: #4bb544;
  --color-background: #eeeeee;
  --border-radius: 4px;
  margin: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  background: url(https://www.hh67.de/Images/VolksdorfRoads.png);
  background-size: cover;
   
}
.indexcontainer {
    width: 600px;
    max-width: 600px;
    margin: 1rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 0 40px rgba(0,0,0,0.2);
    border-radius: var(--border-radius);
    background:#ffffff;
}
.indexcontainer,
.indexform__input,
.indexform__button {
    font:500 1rem 'Quicksand',sans-serif;
}
.indexform--hidden{
    display: none;
}
.indexform > *:first-child {
    margin-top: 0;
}
.indexform > *:last-child {
    margin-bottom: 0;
}
.indexform__title {
    margin-bottom: 2rem;
    text-align: center;
}
.indexform__message {
    text-align: center;
    margin-bottom: 1rem;
}
.indexform__message--success {
    color: var(--color-success);
}
.indexform__message--error {
    color: var(--color-error);
}
.indexform__input-group {
    margin-bottom: 1rem;
}
.indexform__input{
    display: block;
    width: 100%;
    padding: 0.75rem;
    box-sizing: border-box;
    border-radius: var(--border-radius);
    border: 1px solid #dddddd;
    outline: none;
    background: #eeeeee;
    transition: background 0.2s, border-color 0.2s;
}
.indexform__input:focus {
    border-color:  var(--color-primary);
    background: #ffffff;
}
.indexform__input--error {
    color: var(--color-error);
    border-color: var(--color-error);
}
.indexform__input-error-message {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--color-error);
}
.indexform__button {
    width: 100%;
    padding: 1rem 2rem;
    font-weight: bold;
    font-size: 1.1rem;
    color: #ffffff;
    border: none;
    cursor: pointer;
    background-color: var(--color-primary);
}
.indexform__button:hover {
    background: var(--color-primary_dark);
}
.indexform__button:active {
    transform: scale(0.98);
}
.indexform__text {
    text-align: left;
    margin-top: 0.0rem;
    margin-bottom: 0.0rem;
    font-size: 1.5rem;
}
.indexform__link {
    color: var(--color-secondary);
    cursor: pointer;
}
.indexform__link:hover {
    text-decoration: underline;
}
